.tap-box {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 1260px;
    z-index: 9;
}

.tap-box .top-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
}

.tap-box .top-info img {
    width: 25px;
    height: 25px;
}

.tap-box .top-info span {
    font-size: 12px;
    color: #ffffff;
    margin: 0 5px;
}

header {
    position: relative;
    background: #ffffff;
    border-radius: 6px;
    width: 100%;
    height: 80px;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    flex-flow: row wrap;
}

header > a {
    width: 30%;
    height: 80px;
    line-height: 80px;
}

header > a img {
    max-height: 50%;
}

header > a h1 {
    position: absolute;
    top: -99999px;
}

header nav {
    padding: 5px 0;
}

header nav ul {
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    flex: 1;
    position: relative;
}

header nav ul li > a {
    position: relative;
    display: block;
    color: #333333;
    font-weight: 400;
    text-align: center;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    transition: all 500ms linear;
}

header nav ul li:first-of-type > a {
    background: #df0909;
    color: #ffffff;
    font-weight: bolder;
}

header nav ul li > a::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    background: #df0909;
    z-index: -1;
    transition: width 500ms linear;
    left: 0;
}

header nav ul li > a:hover {
    color: #ffffff;
    font-weight: bolder;
    transition: all 500ms linear;
}

header nav ul li > a:hover::before {
    width: 100%;
    transition: width 500ms linear;
}

header nav ul li dl {
    display: none;
    position: absolute;
    width: 140%;
    top: 100%;
    left: 50%;
    margin-left: -70%;
    background: #ffffff;
    border-top: 5px solid #df0909;
}

header nav ul li dl dd {
    /*height: 40px;*/
    border-bottom: 1px solid #efefef;
}

header nav ul li dl dd:last-of-type {
    border-bottom: 0;
}

header nav ul li dl dd a {
    display: block;
    text-align: center;
    /*line-height: 40px;*/
    padding: 8px 0;
    color: #333333;
    text-indent: 0;
    transition: all 500ms linear;
}

header nav ul li dl dd a:hover {
    transition: all 500ms linear;
    color: #ffffff;
    background: #df0909;
}

.ban-box img {
    width: 100%;
}

.about-box {
    margin: 80px 0;
}

.about-box .about-title {
    width: 1260px;
    margin: 0 auto;
}

.about-box .about-title span {
    font-size: 60px;
    font-weight: bolder;
    color: #ededed;
}

.about-box .about-title h4 {
    margin: 0;
    font-size: 30px;
    color: #df0909;
}

.about-box .about-title h4::before {
    display: block;
    content: "";
    margin-bottom: 20px;
    width: 100px;
    height: 3px;
    background: #ededed;
}

.about-box .about-cont {
    width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-box .about-cont article {
    background: #f1f1f1;
    padding: 20px;
    box-sizing: border-box;
}

.about-box .about-cont article p {
    font-size: 14px;
    line-height: 1.8em;
    text-indent: 2em;
    color: #666666;
}

.about-box .about-cont article a {
    display: block;
    height: 20px;
    color: #df0909;
    text-align: right;
    font-size: 12px;
    margin-top: 10px;
}

.about-box .about-cont article a:hover {
    text-decoration: underline;
}

.about-box .about-cont article a::before {
    display: inline-block;
    content: "";
    width: 50px;
    height: 1px;
    background: #df0909;
    margin-right: 5px;
}

.prite-box {
    width: 100%;
}

.prite-box .prite-tit {
    position: relative;
    width: 100%;
}

.prite-box .prite-tit img {
    width: 100%;
}

.prite-box .prite-tit h4 {
    position: absolute;
    margin: auto;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 40px;
    color: #ffffff;
    width: 200px;
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-weight: normal;
    border-bottom: 2px solid #df0909
}

.prite-box .prite-cont {
    width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.prite-box .prite-cont .nav {
    background: #df0909;
    width: 300px;
    padding: 20px 0;
    position: relative;
    top: -100px;
}

.prite-box .prite-cont .nav h2 {
    background: #ffffff;
    width: 260px;
    margin-left: 20px;
    height: 60px;
    line-height: 60px;
    text-align: center;
}

.prite-box .prite-cont .nav h2 img {
    width: 90%;
}

.prite-box .prite-cont .nav ul {
    width: 260px;
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.prite-box .prite-cont .nav ul li {
    width: 49%;
    margin-bottom: 2px;
    background: #ffffff;
    height: 40px;
}

.prite-box .prite-cont .nav ul li:last-of-type {
    border: 0;
}

.prite-box .prite-cont .nav ul li a {
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    color: #333333;
    transition: all 500ms;
}

.prite-box .prite-cont .nav ul li a:hover {
    background: #fe8a91;
    transition: all 500ms;
}

.prite-box .prite-cont > ul {
    flex: 1;
    margin-left: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    flex-flow: row wrap;
}

.prite-box .prite-cont > ul li {
    width: 24%;
    margin-right: 1%;
}

.prite-box .prite-cont > ul li a {
    display: block;
    padding: 5px;
    box-sizing: border-box;
    background: #ffffff;
}

.prite-box .prite-cont > ul li a img {
    width: 100%;
}

.prite-box .prite-cont > ul li a h6 {
    border-top: 1px solid #999999;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 10px 0 0;
    padding: 10px 0;
    font-weight: normal;
    font-size: 14px;
    color: #333333;
}

.prite-box .prite-cont > ul li a span {
    display: block;
    width: 100%;
    background: #e1e1ee;
    color: #999999;
    text-align: center;
    line-height: 40px;
    height: 40px;
    font-size: 12px;
    transition: all 500ms linear;
}

.prite-box .prite-cont > ul li:hover a span {
    background: #df0909;
    color: #ffffff;
    transition: all 500ms linear;
}

.pic-page .prite-tit h4 {
    position: relative;
    margin-top: 80px;
    color: #333333;
}

.pic-page .prite-cont {
    padding: 40px 0;
    flex-direction: column;
}

.ldea-box {
    margin-top: 40px;
    position: relative;
    width: 100%;
    background-image: url(../images/info_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.ldea-box div {
    width: 1260px;
    margin: 0 auto;
    padding: 100px 0;
}

.ldea-box div h4 {
    color: #ffffff;
    font-size: 40px;
    margin: 10px 0;
}

.ldea-box div p {
    font-size: 20px;
    color: #ffffff;
    text-indent: 2em;
    line-height: 2em;
    font-weight: 100;
}

.news-box {
    width: 1260px;
    margin: 60px auto;
}

.news-box .news-tit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.news-box .news-tit::before {
    content: "";
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    height: 100px;
    border: 1px solid #333333;
}

.news-box .news-tit h4 {
    margin: 0;
    position: relative;
    background: #ffffff;
    font-size: 30px;
    color: #333333;
    z-index: 3;
}

.news-box .news-tit strong {
    font-size: 24px;
    color: #666666;
    background: #ffffff;
    z-index: 3;
}

.news-box ul {
    width: 1260px;
    display: flex;
    margin: 80px auto 0;
    flex-flow: row wrap;
    justify-content: space-between;
}

.news-box ul li {
    width: 31%;
    margin-bottom: 40px;
}

.news-box ul li a {
    display: block;
    transition: all 500ms linear;
}

.news-box ul li a span {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #666666;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 500ms linear;
}

.news-box ul li a h6 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 40px;
    margin: 0;
    line-height: 40px;
    font-size: 18px;
    color: #333333;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 500ms linear;
}

.news-box ul li a p {
    font-size: 12px;
    line-height: 1.4em;
    color: #999999;
    height: 4em;
    overflow: hidden;
    padding: 0 10px;
    text-align: justify;
    transition: all 500ms linear;
}

.news-box ul li a i {
    display: block;
    height: 40px;
    line-height: 40px;
    font-style: normal;
    font-size: 14px;
    padding: 0 10px;
    box-sizing: border-box;
    color: #333333;
    transition: all 500ms linear;
    border-top: 1px solid #eaeaea;
    margin-top: 20px;
}

.news-box ul li a:hover {
    background: #999999;
    transition: all 500ms linear;
}

.news-box ul li a:hover span,
.news-box ul li a:hover p,
.news-box ul li a:hover strong,
.news-box ul li a:hover h6,
.news-box ul li a:hover i {
    color: #ffffff;
    transition: all 500ms linear;
}

.news-box ul li a:hover i {
    background: #df0909;
    transition: all 500ms linear;
}

.cotpy {
    width: 100%;
    border-top: 5px solid #df0909;
    text-align: center;
    margin-bottom: 40px;
}

.cotpy h4 {
    font-size: 24px;
    color: #533f03;
}

.cotpy h5 {
    font-size: 18px;
    color: #666666;
    background: #efefef;
    padding: 10px 0;
}

.cotpy a {
    display: block;
    font-size: 14px;
    color: #533f03;
    transition: all 500ms linear;
    padding: 10px 0;
}

.cotpy a:hover {
    color: #362901;
    font-weight: bolder;
    background: #efefef;
    transition: all 500ms linear;
}

.count-box {
    width: 100%;
    background: url(../images/foot_bg.jpg) no-repeat left top;
    background-size: cover;
}

.count-box .count-cont {
    width: 1260px;
    margin: 0 auto;
}

.count-box .count-cont dl {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.count-box .count-cont dl dd {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 40px;
}

.count-box .count-cont dl dd:nth-child(2) {
    margin: 0 30px;
}

.count-box .count-cont dl dd:nth-child(odd) {
    background: red;
}

.count-box .count-cont dl dd:nth-child(even) {
    background: #666666;
}

.count-box .count-cont dl dd img {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    margin-left: 20px;
}

.count-box .count-cont dl dd span {
    color: #ffffff;
    font-size: 12px;
}

.count-dis {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.count-dis ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.count-dis ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.count-dis ul li img {
    width: 150px;
    height: 150px;
}

.count-dis ul li span {
    font-size: 14px;
    color: #ffffff;
    padding: 3px 0;
}

.count-right h6 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    padding: 10px 0;
}

.count-right ul li a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 10px;
}

.count-right p {
    margin-top: 30px;
    background: #333333;
    padding: 5px 10px;
}

.count-right p a {
    color: #ffffff;
    font-size: 14px;
}

.count-right p a:hover {
    text-decoration: underline;
}

.tab {
    display: none;
}

.paging {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 5px 0;
}

.paging span,
.paging a {
    border: 1px solid #ffffff;
    height: 40px;
    border-radius: 3px;
    width: 100px;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    font-weight: bold;
}

.paging span {
    color: #999999;
    margin-right: 5px;
}

.paging a {
    color: #333333;
}

.paging a:hover {
    text-decoration: underline;
}

.content {
    width: 90%;
    max-width: 1260px;
    margin: 40px auto;
}

.content .cont-box h2 {
    font-size: 24px;
    color: #666666;
}

.content .cont-box > span {
    display: block;
    height: 30px;
    line-height: 30px;
    color: #999999;
    text-align: center;
    border-bottom: 1px solid #999999;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 12px;
}

.content .cont-box div img {
    max-width: 100%
}

.nav-last {
    background: #df0909;
    width: 100%;
}

.nav-last-box {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-items: flex-start;
    flex-flow: row wrap;
}

.nav-last-box a {
    width: 100px;
    height: 40px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
}

.nav-last-box a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1280px) {
    body {
        padding-bottom: 51px;
    }

    .tab {
        position: fixed;
        width: 100%;
        height: 49px;
        border-top: 1px solid #e1e1e1;
        background: #ffffff;
        z-index: 9;
        bottom: 0;
        left: 0;
        display: flex
    }

    .tab a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .tab a img {
        width: 25px
    }

    .tab a p {
        font-size: 10px;
        text-align: center;
        color: #666666
    }

    .tap-box {
        width: 100%;
        position: relative;
        background: #e1e1e1;
    }

    .tap-box .top-info {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .tap-box .top-info span {
        color: #333333;
    }

    header {
        width: 100%;
        border-radius: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    header > a {
        width: 100%;
        text-align: center;
    }

    header nav ul {
        flex-flow: row wrap;
    }

    header nav ul li {
        flex: none;
        width: 25%;
    }

    header nav ul li a {
        padding-left: 3px;
        padding-right: 3px;
    }

    .about-box {
        margin: 30px;
    }

    .about-box .about-title {
        width: 100%;
    }

    .about-box .about-cont {
        width: 100%;
        flex-flow: row wrap;
    }

    .prite-box .prite-cont {
        width: 100%;
        flex-flow: row wrap;
    }

    .prite-box .prite-tit h4 {
        font-size: 24px;
        height: 40px;
        line-height: 40px;
    }

    .prite-box .prite-cont .nav {
        top: 0;
        width: 100%;
    }

    .prite-box .prite-cont .nav h2 {
        display: none;
    }

    .prite-box .prite-cont .nav ul {
        margin: 0 auto;
        width: 90%;
    }

    .prite-box .prite-cont > ul {
        margin: 0 auto;
        width: 90%;
    }

    .prite-box .prite-cont > ul li {
        width: 49%;
    }

    .ldea-box div {
        width: 90%;
        margin: 0 auto;
    }

    .news-box {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .news-box ul {
        width: 100%;
    }

    .news-box ul li {
        width: 100%;
    }

    .count-box .count-cont {
        width: 100%;
    }


    .count-box .count-cont dl {
        flex-direction: column;
        justify-content: center;
    }

    .count-box .count-cont dl dd {
        margin: 0 30px;
    }

    .count-box .count-cont .count-dis {
        flex-flow: row wrap;
        justify-content: center;
    }

    .count-box .count-cont .count-dis .count-right {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .count-box .count-cont .count-dis .count-right ul {
        flex-flow: row wrap;
    }
}